home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mintmant / freadlin.txt < prev    next >
Text File  |  1992-03-24  |  1KB  |  64 lines

  1. Freadlink(2)              Oct. 7, 1991               Freadlink(2)
  2.  
  3.  
  4.  
  5. NAME
  6.      Freadlink - determine contents of a symbolic link
  7.  
  8. SYNOPSIS
  9.      LONG Freadlink( WORD bufsiz, char *buf, char *name );
  10.  
  11. DESCRIPTION
  12.      Freadlink determines what file the symbolic link name points
  13.      to,  i.e.  what the first argument to the Fsymlink call that
  14.      created name was. This 0-terminated string is placed in  the
  15.      memory  region  pointed  to  by buf.  The total size of this
  16.      region is given by bufsiz; this must be enough to  hold  the
  17.      terminating 0.
  18.  
  19. RETURNS
  20.      0 on success
  21.  
  22.      ERANGE if the symbolic link contents could not fit in buf.
  23.  
  24.      EFILNF if name is not found.
  25.  
  26.      EACCDN if name is not the name of a symbolic link.
  27.  
  28.      EINVFN if the file system containing name does  not  support
  29.      symbolic links.
  30.  
  31. SEE ALSO
  32.      Fsymlink(2)
  33.  
  34. BUGS
  35.      The Unix readlink call returns the number of bytes  read  on
  36.      success, rather than 0.
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. Version 0.9   Last change: MiNT Programmer's Manual             1
  61.  
  62.  
  63.  
  64.